home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
sharpen.ifx.pre
< prev
next >
Wrap
Text File
|
2004-08-03
|
445b
|
26 lines
/*
* Sharpen.ifx.pre
* Written by Thomas Krehbiel
*
* Sharpen Effect.
*
* Inputs:
* Word(Arg(1),1) = Sequence number (?)
* Word(Arg(1),2) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
a = GETCLIP('Autofx_Sharpen_Amount') ; IF a = "" THEN a = 25
RequestSlider '"Sharpen Amount:"' 1 255 a
IF rc ~= 0 THEN EXIT rc
CALL SETCLIP('Autofx_Sharpen_Amount', result)
EXIT